home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / c / amivogl-1.03.lzh / vogl / src / sunfort / fviewp.c.Z / fviewp.c
Encoding:
C/C++ Source or Header  |  1991-06-03  |  852 b   |  71 lines

  1. #include "vogl.h"
  2.  
  3. /*
  4.  * pushviewport_
  5.  */
  6. pushviewport_()
  7. {
  8.     pushviewport();
  9. }
  10.  
  11. /*
  12.  * pushvi_    (same as pushviewport_)
  13.  */
  14. pushvi_()
  15. {
  16.     pushviewport();
  17. }
  18.  
  19. /*
  20.  * popviewport_
  21.  */
  22. popviewport_()
  23. {
  24.     popviewport();
  25. }
  26.  
  27. /*
  28.  * popvie_    (same pushviewport_)
  29.  */
  30. popvie_()
  31. {
  32.     popviewport();
  33. }
  34.  
  35. /*
  36.  * viewport_
  37.  */
  38. viewport_(xlow, xhigh, ylow, yhigh)
  39.     int    *xlow, *ylow, *xhigh, *yhigh;
  40. {
  41.     viewport(*xlow, *xhigh, *ylow, *yhigh);
  42. }
  43.  
  44. /*
  45.  * viewpo_    (same as viewport_)
  46.  */
  47. viewpo_(xlow, xhigh, ylow, yhigh)
  48.     int    *xlow, *ylow, *xhigh, *yhigh;
  49. {
  50.     viewport(*xlow, *xhigh, *ylow, *yhigh);
  51. }
  52.  
  53. /*
  54.  * getviewport_
  55.  */
  56. getviewport_(left, right, bottom, top)
  57.     short    *left, *right, *bottom, *top;
  58. {
  59.     getviewport(left, right, bottom, top);
  60. }
  61.  
  62. /*
  63.  * getvie_
  64.  */
  65. getvie_(left, right, bottom, top)
  66.     short    *left, *right, *bottom, *top;
  67. {
  68.     getviewport(left, right, bottom, top);
  69. }
  70.  
  71.